/* Please Ã¢ÂÂ¤ this if you like it! */

@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext");
/* @import url("https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css"); */
/* @import url("font/tabler-icon.min.css"); */
@import url("../../../assets/css/icons/tabler-icons/tabler-icons.css");

/* #Primary
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --main-color: rgb(254, 254, 255);
  --sub-main-color: #04e331;
  --text-color: black;
  /* --dark-yellow: #dae503;
  --light-yellow: #fcff32; */
  --dark-yellow: #00e5ff;   /* neon cyan */
--light-yellow: #b3f5ff; /* soft aqua */

  /* --green: #225d2e; */
  --green: #070a57;
  --white: #ffffff;
  font-display: swap;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  margin-top: 65px;
  background: var(--dark-yellow);
}

::-webkit-scrollbar-track {
  margin-top: 65px;
  background: rgba(126, 61, 61, 0);
}
/* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  --main-color: #f5faff;       
  --sub-main-color: #00bfff;    
  --text-color: #0a1a2f;       
  --dark-yellow: #1e90ff;       
  --light-yellow: #87cefa;     
  --green: #0b3c5d;             
  --white: #ffffff;

  font-display: swap;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  margin-top: 65px;
  background: linear-gradient(
    180deg,
    #00bfff,
    #1e90ff,
    #0000ff
  );
  border-radius: 8px;
}

::-webkit-scrollbar-track {
  margin-top: 65px;
  background: rgba(0, 191, 255, 0.08);
} */

body {
  font-family: "Poppins", sans-serif;
  color: rgb(0, 0, 0);
  overflow-y: overlay;
}

.full-loader {
  position: fixed;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  z-index: 10000;
}

.loader {
  width: 50px;
  aspect-ratio: 1.154;
  position: relative;
  background: conic-gradient(
    from 120deg at 50% 64%,
    #fff20000,
    var(--green) 1deg 120deg,
    #fee00000 121deg
  );
  animation: primaryLoderAnimation 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  transform-origin: 50% 66%;
  animation: secondryLoderAnimation 1.5s infinite;
}

.loader:after {
  --s: -1;
}

@keyframes primaryLoderAnimation {
  0%,
  30% {
    transform: rotate(0);
  }

  70% {
    transform: rotate(120deg);
  }

  70.01%,
  100% {
    transform: rotate(360deg);
  }
}

@keyframes secondryLoderAnimation {
  0% {
    transform: rotate(calc(var(--s, 1) * 120deg)) translate(0);
  }

  30%,
  70% {
    transform: rotate(calc(var(--s, 1) * 120deg))
      translate(calc(var(--s, 1) * -5px), 10px);
  }

  100% {
    transform: rotate(calc(var(--s, 1) * 120deg)) translate(0);
  }
}

hr {
  border: 1px solid var(--dark-yellow);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000;
}

.header .logo {
  width: 64px;
  height: 100%;
}

.header .navbar {
  position: relative;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.header .navbar a {
  margin-right: 20px;
  font-size: 16px;
  text-transform: capitalize;
}

.navbar a {
  font-size: 24px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 400;
}

.navbar a:hover {
  text-decoration: none;
  color: var(--dark-yellow);
}

.drop-down-icon {
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
}

.dropdown:hover .drop-down-icon {
  transform: rotate(180deg);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 150px;
  padding-top: 20px;
  padding-bottom: 10px;
  height: 0;
  z-index: 1;
  transition: height 10s;
  box-shadow: 0px 80px 50px -30px rgba(0, 0, 0, 0.15);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.dropdown:hover .dropdown-content {
  display: block;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;

  grid-area: 1 / 1 / 2 / 2;
  /* Adjust the height as needed */
  box-shadow: 1px 14px 28px -11px rgba(16, 104, 17, 0.53);
  -webkit-box-shadow: 1px 14px 28px -11px rgba(16, 104, 17, 0.53);
  -moz-box-shadow: 1px 14px 28px -11px rgba(16, 104, 17, 0.53);
}

.dropdown-content a {
  padding: 10px 2px;
  text-decoration: none;
  display: block;
  border-radius: 6px;
  margin-right: 4px !important;
  margin-left: 4px;
}

.dropdown-content-items {
  width: 150px;
}

.dropdown-content a:hover {
  background-color: green;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  top: 65px !important;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  text-align: center;
  background-color: #fbf7c7ed;
}

.sidenav .link {
  /* padding: 8px 8px 8px 32px; */
  padding: 8px 8px 8px 8px;

  text-decoration: none;
  font-size: 26px;
  color: var(--green);
  display: block;
  transition: 0.3s;
  font-weight: 500;
}

.sidenav .link i {
  position: absolute;
  right: 0%;
}

header .closebtn {
  display: none;
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.link img {
  height: 100%;
  width: 100%;
  mix-blend-mode: darken;
}

.login-btn {
  height: 38px;
  width: 112px;
  background-color: var(--light-yellow);
  outline: none;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 18px;
  color: var(--white);
  transition-property: background-color, border-color, color, box-shadow, filter;
  transition-duration: 0.3s;
}

.login-btn:hover {
  border-radius: 10px;
  transform: scale(1.04);
  background-color: var(--light-yellow);
  box-shadow: 0px 4px 9px 0px var(--dark-yellow);
}

#menu-mobile-humburger {
  display: none;
}

.list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  grid-gap: 8px;
  grid-area: 1 / 1 / 2 / 2;
}

.grid-item {
  text-decoration: none;
  color: green;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  background-color: var(--white);
  border-radius: 5px;
}

.our-leader {
  text-align: center;
  padding: 5% 0;
}

.head-card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .leader-main {
  width: 100%;
  height: calc(max-content+20px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px;
  background: linear-gradient(-45deg, rgb(2, 67, 2), green, yellow, #0c52a1);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  flex-wrap: wrap;
  align-content: center;
} */

.leader-main {
  width: 100%;
  height: calc(max-content+20px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px;
  background: linear-gradient(-45deg, rgb(6 7 45), #090eac, #00e7ff, #0c52a1);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  flex-wrap: wrap;
  align-content: center;
}

.profile-card {
  position: relative;
  font-family: sans-serif;
  width: 250px;
  height: 225px;

  /* height: 220px; */
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 22px #3336;
  transition: 0.6s;
  margin: 0 25px;
  margin-top: 40px;
  border-radius: 10px;
}

/* .profile-card:hover {
  border-radius: 10px;
  height: 260px;
} */

.profile-card .img {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.6s;
  z-index: 0;
}

/* .profile-card:hover .img {
  transform: translateY(-60px);
} */
.profile-card .img {
  transform: translateY(-60px);
}

.img img {
  width: 100%;
  height: 110%;
  border-radius: 50%;
  box-shadow: 0 0 22px #3336;
  transition: 0.6s;
}

.profile-card:hover img {
  border-radius: 10px;
}

.caption {
  text-align: center;
  transform: translateY(-32px);
  opacity: 0;
  transition: 0.6s;
}

/* .profile-card:hover .caption {
  opacity: 1;
} */
.caption p a {
  text-decoration: none;
  color: #045714;
}

.profile-card .caption {
  opacity: 1;
}

.caption h3 {
  font-size: 18px;
  font-family: sans-serif;
}

.caption p {
  font-size: 15px;
  color: #0c52a1;
  font-family: sans-serif;
  margin: 2px 0 9px 0;
}

.caption .social-links a {
  display: none;
  color: #333;
  margin-right: 15px;
  font-size: 21px;
  transition: 0.6s;
}

.social-links a:hover {
  color: #0c52a1;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.relative {
  position: relative;
}

/* .our-leader h1,
.past-gallery h1 {
  font-size: 26px;
  color: green;
  text-align: center;
  line-height: 36px;
  font-weight: 500;


} */
.our-leader h1,
.past-gallery h1 {
  font-size: 26px;
  color: #120993;
  text-align: center;
  line-height: 36px;
  font-weight: 500;
}

.custom-shape-divider-top-1698607721 {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1698607721 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-top-1698607721 .shape-fill {
  fill: #ffffff;
}

/* gallery css */
.past-gallery-container {
  width: 100%;
}

.trans {
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.gallery-top {
  display: flex;
  /* width: 80vw; */
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.gallery-top ul {
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 100%;
  height: 100%;
  z-index: 0;
  box-sizing: border-box;
}

.gallery-top ul li {
  position: relative;
  float: left;
  width: 23%;
  height: 226px;
  margin: 4px;
  overflow: hidden;
}

.gallery-top ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .gallery-top ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  content: '';
  color: white;
  opacity: 0.4;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
} */

.gallery-top ul li:hover::before {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.9);
}

.gallery-top ul li img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  position: relative;
  top: -100%;
  /* Transition */
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.lightbox:target {
  outline: none;
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -webkit-transition: all 1.2s ease;
}

.lightbox:target img {
  top: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

/* footer css */
.footer {
  background: var(--green);
  padding: 10px;
}

.box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(160px, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.footer .box-container .box p {
  font-size: 16px;
  line-height: 2;
  padding: 2px 0;
}

p {
  margin-top: 0;
  margin-bottom: 5px;
}

.footer .box-container .box .share {
  margin-top: 2px;
}

.footer .box-container .box .share .instagram {
  color: white;
  background: radial-gradient(
      circle farthest-corner at 35% 90%,
      #fec564,
      transparent 50%
    ),
    radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
    radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
    radial-gradient(
      ellipse farthest-corner at 20% -50%,
      #5258cf,
      transparent 50%
    ),
    radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
    radial-gradient(
      ellipse farthest-corner at 60% -20%,
      #893dc2,
      transparent 50%
    ),
    radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
    linear-gradient(
      #6559ca,
      #bc318f 30%,
      #e33f5f 50%,
      #f77638 70%,
      #fec66d 100%
    );
}

.footer .box-container .box .share a {
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 16px;
  background-color: var(--white);

  margin-right: 5px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 5px;
}

.footer .box-container .box .share a:hover {
  font-size: 32px;
  color: var(--sub-main-color);
  margin-right: 5px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  box-shadow: 0 2px 2px 2px var(--white);
}

.footer .box-container .box .box-text {
  font-size: 24px;
  text-transform: capitalize;
  color: white;
  padding: 5px 0;
  font-weight: 300;
}

.footer .box-container .box .link {
  width: fit-content;

  font-size: 14px;
  line-height: 2;
  color: white;
  padding: 4px 0;
  display: block;
  text-decoration: none;
  text-transform: capitalize;
}

.footer .box-container .box .link:hover {
  border-bottom: 2px solid white;
}

.footer .box-container .box .email {
  width: 90%;

  padding: 10px 8px;
  font-size: 20px;
  border: none;
  margin-bottom: 5px;
  border-radius: 10px;
}

textarea:focus,
input:focus {
  outline: none;
}

.footer .box-container .box .email:active {
  outline: none;
}

.btn-newsletter {
  display: inline-block;
  margin-top: 5px;
  padding: 10px 8px;
  font-size: 16px;
  background: #f0fdfa;
  color: var(--sub-main-color);
  cursor: pointer;
  text-transform: capitalize;
  border: none;
  border-radius: 10px;
}

.btn-newsletter:hover {
  transform: scale(1.2);
  color: var(--green);
}

.footer .credit {
  text-align: center;
  margin-top: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 16px;
  text-transform: capitalize;
  border-top: 1px solid var(--white);
  color: white;
}

.footer .credit a {
  text-transform: capitalize;
  color: white;
  text-decoration: none;
}

.team-section h1 {
  margin: 30px 0px;
  text-align: center;
}

.fa-users:before {
  content: "\f0c0";
  color: #ffa400;
  margin: 5px;
}

.team-section {
  margin: 40px;
  text-align: center;
}

.event-details-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  max-width: 772px;
  margin: auto;
}

.team-section .single_advisor_profile {
  margin: 10px;
  visibility: visible;
  animation-delay: 0.2s;
  animation-name: fadeInUp;
  height: 60%;
  width: 220px;
  flex: 20%;
}

.team-section .top-content {
  position: relative;
  z-index: 1;
  border-radius: 15px 15px 0 0;
  margin: 0 auto;
  background-color: var(--green);
  overflow: hidden;
}

.team-section .top-content img {
  height: 250px;
  width: 100%;
}

.team-section .single_advisor_profile .single_advisor_details_info {
  font-size: 20px;
}

.team-section .single_advisor_profile .single_advisor_details_info::after {
  background-color: var(--green);
}

.team-section .single_advisor_profile .single_advisor_details_info {
  padding: 20px;
  padding-left: 0;
}

.team-section .single_advisor_profile:hover .single_advisor_details_info,
.team-section .single_advisor_profile:focus .single_advisor_details_info {
  background-color: var(--green);
}

@media only screen and (max-width: 1024px) {
  .gallery-top ul li {
    height: 160px;
  }

  .gallery-top ul {
    display: flex;

    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
}

@media only screen and (max-width: 720px) {
  .header {
    padding-left: 8px;
    padding-right: 8px;
  }

  .header .navbar {
    display: none;
  }

  #menu-mobile-humburger {
    display: inline-block;
  }

  .leader-main {
    padding: 20px;
    flex-direction: row;
  }

  .leader-main .profile-card {
    width: 120px;
    height: 120px;
    padding: 10px;
    margin: 20px 4px;
  }

  .profile-card:hover {
    height: 130px;
  }

  .caption {
    transform: translateY(-40px);
    transition: 0.8s;
  }

  .caption h3 {
    font-size: 12px;
  }

  .caption p {
    font-size: 10px;
    margin: 2px 0 9px 0;
  }

  .caption .social-links a {
    display: none;
    margin-right: 17px;
    font-size: 14px;
    transition: 0.6s;
  }

  /* .profile-card:hover .img {
    transform: translateY(-40px);
  } */

  .profile-card .img {
    transform: translateY(-40px);
  }

  .img img {
    height: 100%;
  }

  .past-gallery {
    height: fit-content;
    margin-bottom: 10px;
  }

  .gallery-top ul li {
    height: 90px;
    width: 23%;
    margin: 2px;
  }

  .head-name-heading {
    font-size: 11px !important;
  }

  .team-section .event-details-container {
    flex-direction: column;
  }

  .team-section .single_advisor_profile {
    flex: 50%;
  }
}

.lazy {
  filter: blur(5px);
  transition: filter 0.3s ease-in-out;
}

.lazy.loaded {
  filter: blur(0);
  transition: filter 0.3s ease-in-out;
  /* Optional: Add transition for the removal of blur */
}

.wow-box {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s, transform 1s;
}

/* Add the animated class when the element comes into view */
.wow-box.wow.animated {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeIn {
  from {
    filter: blur(5px);
  }

  to {
    filter: blur(0);
  }
}

@media only screen and (max-width: 425px) {
  .caption p a {
    font-size: 9px;
  }

  .past-gallery {
    height: fit-content;
    margin-bottom: 10px;
  }

  .gallery-top ul li {
    height: 50px;
    margin: 2px;
  }

  .head-name-heading {
    font-size: 11px;
  }

  .team-section .event-details-container {
    flex-direction: column;
  }

  .team-section .top-content img {
    height: 220px;
    width: 100%;
  }
}

@media only screen and (max-width: 410px) {
  .caption p a {
    font-size: 8px;
  }

  .gallery-top ul li {
    width: 23%;
  }

  .footer .box-container .box .share a {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 18px;
    background-color: var(--white);
    color: green;
    margin-right: 5px;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
  }
}
